home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / KARSILAS.C < prev    next >
Text File  |  1996-07-05  |  1KB  |  42 lines

  1. main()  /* KARSILAS.C: Bir suru karsilastirma */
  2. {
  3. int x = 11,y = 11,z = 11;
  4. char a = 40,b = 40,c = 40;
  5. float r = 12.987,s = 12.987,t = 12.987;
  6.  
  7.                     /* Birinci grup */
  8.  
  9.    if (x == y) z = -13;   /* z = -13 olacak           */
  10.    if (x > z)  a = 'A';   /* a = 65  olacak           */
  11.    if (!(x > z)) a = 'B'; /* bu hicbir sey yapmayacak */
  12.    if (b <= c) r = 0.0;   /* r = 0.0 olacak           */
  13.    if (r != s) t = c/2;   /* t = 20  olacak           */
  14.  
  15.                     /* Ikinci grup   */
  16.  
  17.    if (x = (r != s)) z = 1000; /* x pozitif olacak, ve
  18.                              z = 1000 olacak       */
  19.    if (x = y) z = 222;   /* bu, x = y, and z = 222 yapar */
  20.    if (x != 0) z = 333;  /* z = 333 olacak   */
  21.    if (x) z = 444;       /* z = 444 olacak */
  22.  
  23.                     /* Ucuncu grup */
  24.  
  25.    x = y = z = 77;
  26.    if ((x == y) && (x == 77)) z = 33; /* z = 33 olur   */
  27.    if ((x > y) || (z > 12))   z = 22; /* z = 22 olacak */
  28.    if (x && y && z) z = 11;           /* z = 11 olur   */
  29.    if ((x = 1) && (y = 2) && (z = 3)) r = 12.00; /* Bu ise,
  30.                      x = 1, y = 2, z = 3, r = 12.00 yapar */
  31.  
  32.    if ((x == 2) && (y = 3) && (z = 4)) r = 14.56;
  33.                             /* Birsey degistiremez */
  34.  
  35.                    /* Dorduncu grup */
  36.  
  37. if (x == x); z = 27.345;  /* z daima deger degistirir */
  38. if (x != x)  z = 27.345;  /* Hicbirsey degismez    */
  39. if (x = 0)   z = 27.345;  /* x = 0 olur, z degismez */
  40.  
  41. }
  42.